/*



	// Table of contents //

		01. FONTS
		02. BODY
		03. HTML TAGS
		04. LINKS
		05. FORM ELEMENTS
		06. CUSTOM CONTAINER 
		07. CUSTOM CURSOR
		08. RANGE SLIDER
		09. ACCORDION
		10. DATE PICKER
		11. HAMBURGER MENU
		12. REVEAL EFFECT
		13. CUSTOM BUTTON
		14. PRELOADER 
		15. PAGE TRANSITION
		16. PAGE LOADED
		17. HAMBURGER NAVIGATION
		18. NAVBAR
		19. SLIDER
		20. PAGE HEADER
		21. CONTENT SECTION
		22. SECTION TITLE
		23. HOTEL SEARCH FORM
		24. SIDE CONTENT
		25. SIDE IMAGE
		26. SIDE GALLERY
		27. SIDE HOTEL BOX
		28. CAROUSEL IMAGE BOX
		29. EVENTS TAB
		30. CONTENT TAB
		31. CAROUSEL EVENT BOX
		32. ROOM SLIDER
		33. RECENT NEWS
		34. IMAGE
		35. TESTIMONIAL BOX
		36. PACKAGE BOX
		37. MEMBER BOX
		38. VIDEO BOX
		39. ROOMS FILTER
		40. ROOMS LIST
		41. ROOMS BOX
		42. ROOMS TYPE
		43. RECENT TESTIMONIALS
		44. ROOMS GALLERY
		45. ROOMS INFO BOX
		46. MEETING EVENT BOX
		47. SPECIAL OFFER BOX
		48. EVENT HEADLINE
		49. CONTACT FORM
		50. CONTACT BOX
		51. GOOGLE MAPS
		52. NEWS BOX
		53. SIDEBAR
		54. PAGINATION
		55. NEWSLETTER BOX
		56. FOOTER BAR
		57. FOOTER
		58. MEDIUM DEVICE RESPONSIVE
		59. TABLET DEVICE RESPONSIVE
		60. MOBILE DEVICE RESPONSIVE

	

*/
@font-face {
  font-family: 'Argesta Display';
  src: url("../fonts/ArgestaDisplay-Regular.eot");
  src: url("../fonts/ArgestaDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ArgestaDisplay-Regular.woff2") format("woff2"), url("../fonts/ArgestaDisplay-Regular.woff") format("woff"), url("../fonts/ArgestaDisplay-Regular.ttf") format("truetype"), url("../fonts/ArgestaDisplay-Regular.svg#ArgestaDisplay-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
* {
  outline: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Microsoft YaHei';
  font-size: 15px;
  color: #141414;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* HTML TAGS */
img {
  max-width: 100%;
}

strong {
  font-weight: 600;
}

iframe {
  max-width: 100%;
}
p {
    line-height: 1.8em;
}
/* LINKS */
a {
  color: #141414;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #141414;
}

/* FORM ELEMENTS */
input[type="text"] {
  width: 420px;
  max-width: 100%;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="email"] {
  width: 420px;
  max-width: 100%;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="search"] {
  width: 420px;
  max-width: 100%;
  height: 80px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="password"] {
  width: 420px;
  max-width: 100%;
  height: 80px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="number"] {
  width: 420px;
  max-width: 100%;
  height: 80px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="date"] {
  width: 420px;
  max-width: 100%;
  height: 80px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
  border-radius: 50%;
}

input[type="radio"]:checked {
  border: 6px solid #141414;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 4px;
  transform: translateY(3px);
  appearance: none;
  background: #ededed;
}

input[type="checkbox"]:checked {
  border: 4px solid #ededed;
  background: #141414;
}

textarea {
  width: 520px;
  max-width: 100%;
  height: 140px;
  padding: 30px;
  border: 1px solid #cecece;
}

select {
  width: 420px;
  max-width: 100%;
  height: 80px;
  padding: 0 30px;
  border: 1px solid #cecece;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 30px) 34px, calc(100% - 25px) 34px, calc(100% - 3.5em) 20px;
  background-size: 5px 5px, 5px 5px, 1px 40px;
  background-repeat: no-repeat;
}

select:focus {
  background-image: linear-gradient(45deg, gray 50%, transparent 50%), linear-gradient(135deg, transparent 50%, gray 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 25px) 34px, calc(100% - 30px) 34px, calc(100% - 3.5em) 20px;
  background-size: 5px 5px, 5px 5px, 1px 40px;
  background-repeat: no-repeat;
  border-color: gray;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input[type="submit"] {
  height: 80px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #0091d9;
  border: none;
  padding: 0 50px;
}

button[type="submit"] {
  height: 80px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #0091d9;
  border: none;
  padding: 0 50px;
}
button[type="submit"] i {
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  transform: translateY(2px);
}

/* SPACINGS */
.no-spacing {
  margin: 0 !important;
  padding: 0 !important;
}

.no-top-spacing {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.no-bottom-spacing {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.spacing-50 {
  height: 50px;
  display: flex;
}

.spacing-100 {
  width: 100%;
  height: 100px;
  display: flex;
}

/* CUSTOM CONTAINER */
@media (min-width: 1170px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1260px;
  }
}
/* CUSTOM CLASSES */
.overflow {
  overflow: hidden;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: -40px;
  left: -40px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor:before {
  content: "";
  width: 80px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid white;
  transition: all ease 0.15s;
  transform: scale(0.15);
}

.cursor.light:before {
  transform: scale(1);
  background: transparent;
}

.cursor.drag {
  mix-blend-mode: unset;
}

.cursor.drag:before {
  transform: scale(1);
  background: #0091d9;
  border-color: transparent;
}

.cursor.drag:before {
  content: "\ea23";
  font-family: "LineIcons";
  font-size: 20px;
  color: #fff;
}

/* RANGE SLIDER */
.range-slider {
  width: 100%;
  display: block;
}

.range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 0;
  background: #f2f2f2;
  outline: none;
  padding: 0;
  margin: 0;
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0091d9;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}

.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #0091d9;
  cursor: pointer;
  -moz-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}

.range-slider__range:active::-moz-range-thumb {
  background: #0091d9;
}

.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #0091d9;
}

::-moz-range-track {
  background: #0091d9;
  border: 0;
}

input::-moz-focus-inner, input::-moz-focus-outer {
  border: 0;
}

/* ACCORDION */
.accordion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 0;
}
.accordion .card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: none;
  border-radius: 0;
  border: 1px solid #eaebee;
  margin-bottom: 10px;
  border: none;
}
.accordion .card .card-header {
  width: 100%;
  display: block;
  background: none;
  margin: 0;
  padding: 0;
  border: none;
}
.accordion .card .card-header a {
  width: 100%;
  float: left;
  font-weight: 600;
  padding: 20px 25px;
  color: #141414;
  font-weight: 600;
  border: 1px solid #cbcbcb;
}
.accordion .card .card-header a:hover {
  color: #0091d9;
  text-decoration: none;
}
.accordion .card .card-body {
  width: 100%;
  line-height: 26px;
  opacity: 0.7;
}
.accordion .card [aria-expanded="true"] {
  color: #fff !important;
  background: #0091d9;
  border-color: #0091d9 !important;
}

/* DATE PICKER */
.datepicker-dropdown {
  width: 280px;
  border: none;
  padding: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.datepicker-panel ul:first-child {
  width: 280px;
  display: flex;
}
.datepicker-panel ul:first-child li {
  flex: auto;
  box-shadow: none;
}

.datepicker-panel ul:nth-child(2) {
  font-weight: 600;
}
.datepicker-panel ul:nth-child(2) li {
  background: #f5f3ec;
}

.datepicker-panel > ul > li {
  padding: 5px 0;
  width: 40px;
  height: auto;
  box-shadow: 1px 0 0 0 #eee, 0 1px 0 0 #eee, 1px 1px 0 0 #eee, 1px 0 0 0 #eee inset, 0 1px 0 0 #eee inset;
}

.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
  background: #0091d9;
  color: #fff;
}

.datepicker-panel > ul > li.highlighted {
  background-color: #0091d9;
}

.datepicker-panel > ul > li:hover {
  background-color: #f5f3ec;
}

.datepicker-top-left:after, .datepicker-top-right:after {
  display: none;
  border: none;
}

.datepicker-top-left:before, .datepicker-top-right:before {
  display: none;
  border: none;
}

.datepicker-bottom-left:after, .datepicker-bottom-right:after {
  display: none;
  border: none;
}

.datepicker-bottom-left:before, .datepicker-bottom-right:before {
  display: none;
  border: none;
}

/* HAMBURGER MENU */
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  outline: none;
}

.line {
  fill: none;
  stroke: #141414;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 3;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 3;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 3;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 3;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
}

/* REVEAL EFFECT */
.reveal-effect {
  float: left;
  position: relative;
}
.reveal-effect.animated:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #141414;
  position: absolute;
  left: 0;
  top: 0;
  animation: 1s reveal linear forwards;
  -webkit-animation-duration: 1s;
  z-index: 1;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.reveal-effect.animated > * {
  animation: 1s reveal-inner linear forwards;
}

@-webkit-keyframes reveal {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@-webkit-keyframes reveal-inner {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
  51% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
/* CUSTOM BUTTON */
.custom-button {
  height: 80px;
  line-height: 80px;
  display: inline-block;
  background: #0091d9;
  padding: 0 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}
.custom-button.light {
  border: 1px solid #fff;
  background: none;
}
.custom-button.line {
  border: 1px solid #141414;
  background: none;
  color: #141414;
  text-transform: uppercase;
  }
.custom-button.line:hover {
  color: #141414;
}
.custom-button:hover {
  text-decoration: none;
  color: #fff;
}
.custom-button:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  transition: width 0s ease, background .25s ease;
}
.custom-button:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #141414;
  transition: width .25s ease;
  opacity: 0.1;
}
.custom-button:hover:before {
  width: 100%;
  background: #141414;
  opacity: 0.1;
  transition: width .25s ease;
}
.custom-button:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* PRELOADER */
.preloader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #00aeee;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 1s;
  transition-delay: 1s;
}
.preloader .loadbar {
  width: 0%;
  height: 100%;
  max-height: 6px;
  background: #0091d9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
}
.preloader figure {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade 0.30s;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  position: relative;
}
.preloader figure span {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.preloader figure img {

    max-width: 200px;
    display: inline-block;
    opacity: 1;
    animation: scaleDraw 3s infinite ease-in-out alternate;
}

@keyframes fade {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* PAGE TRANSITION */
.page-transition {
  width: 100%;
  height: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #0091d9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.page-transition .layer {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 1s;
}
.page-transition.active {
  height: 100vh;
}
.page-transition.active .layer {
  height: 100vh;
}

/* BODY */
body .navbar {
  transform: translateY(-100%);
  transition-delay: 0.5s;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

body .slider .main-slider {
  transform: scale(1.4);
  transition-delay: 1.15s;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

body .page-header {
  transform: scale(1.4);
  transition-delay: 0.5s;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

/* PAGE LOADED */
.page-loaded .preloader {
  height: 0;
}

.page-loaded .preloader .loadbar {
  max-height: 100%;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}

.page-loaded .preloader figure {
  transform: translateY(50px);
  opacity: 0;
}

.page-loaded .navbar {
  transform: translateY(0);
background: rgb(255 255 255 / 80%);}

.page-loaded .slider .main-slider {
  transform: scale(1);
}

.page-loaded .page-header {
  transform: scale(1);
  background-image: linear-gradient(45deg, #1895d3, #5053b7);
  background-position: center;
}

/* HAMBURGER NAVIGATION */
.hamburger-navigation {
  width: 100%;
  height: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  background: #0091d9;
}
.hamburger-navigation .layer {
  width: 100%;
  /* height: 100vh; */
  background: #00308b;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-delay: 1s;
}
.hamburger-navigation .container {
  position: relative;
  z-index: 1;
  visibility: hidden;
}
.hamburger-navigation .info-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 50px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.hamburger-navigation .info-box span {
  width: 100%;
  display: block;
  margin-top: 10px;
}
.hamburger-navigation .info-box .nav-social {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.hamburger-navigation .info-box .nav-social li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
.hamburger-navigation .info-box .nav-social li a {
  color: #fff;
  font-size: 14px;
}
.hamburger-navigation .nav-menu {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.hamburger-navigation .nav-menu.mobile-menu {
  display: none;
}
.hamburger-navigation .nav-menu li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.hamburger-navigation .nav-menu li a {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 2em;
  max-width: 180px;
  text-align: left;
  margin: auto;
}
.hamburger-navigation .nav-menu li a:hover {
  /* color: #0091d9; */
}

/* HAMBURGER NAGIVATION ACTIVE */
.hamburger-navigation-active .scroll-content {
  transform: translate3d(0px, 0px, 0px) !important;
}

.hamburger-navigation-active .hamburger-navigation {
  height: 100vh;
}

.hamburger-navigation-active .hamburger-navigation .layer {
  height: 160vh;
  background-image: radial-gradient(#00548b, #00228b);
  position: absolute;
}

.hamburger-navigation-active .hamburger-navigation .container {
  visibility: visible;
}

.hamburger-navigation-active .hamburger-navigation .nav-menu {
  opacity: 1;
  visibility: visible;
  text-align: left;
}

.hamburger-navigation-active .hamburger-navigation .info-box {
  opacity: 1;
  visibility: visible;
}

.hamburger-navigation-active .navbar .logo {
  opacity: 0;
}

.hamburger-navigation-active .navbar .navbar-text {
  opacity: 0;
}

.hamburger-navigation-active .navbar .site-menu {
  opacity: 0;
}

/* NAVBAR */
.navbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.navbar .logo {
  display: inline-block;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.navbar .logo a {
  display: inline-block;
}
.navbar .logo a img {
  height: 60px;
}
.navbar .navbar-text {
  display: inline-block;
  margin: 0 auto;
  color: #0091d9;
  font-size: 18px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.navbar .navbar-text a{ color: #0091d9;}
.navbar .site-menu {
  display: inline-block;
  margin-left: auto;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.navbar .site-menu ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.navbar .site-menu ul li {
  display: inline-block;
  z-index: 2;
  padding: 33px  25px 32px  25px;
  border-bottom: 3px solid #0091d900;
  list-style: none;
}
.navbar .site-menu ul li:hover {
  border-bottom: 3px solid #0091d9;
}
.navbar .site-menu ul li a {
  display: inline-block;
  color: #141414;
  font-size: 15px;
}
.navbar .site-menu ul li a:hover {
  text-decoration: none;
}
.navbar .hamburger-menu {
  display: none;
  margin-left: auto;
}

/* SLIDER */
.slider {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-align: center;
  background: url("../images/slide01.jpg") center;
  background-size: cover !important;
  overflow: hidden;
}
.slider h6 {
  width: 100%;
  display: block;
  letter-spacing: 5px;
}
.slider h1 {
  font-weight: 400;
  font-size: 3.0vw;
  font-family: "Argesta Display";
  margin-bottom: 30px;
    
}
.slider p {
  padding: 0 20%;
  opacity: 0.7;
  letter-spacing: 1px;
}
.slider a {
  height: 80px;
  line-height: 80px;
  display: inline-block;
  background: #f5f3ec;
  color: #0091d9;
  font-size: 14px;
  font-weight: 600;
  padding: 0 50px;
  position: relative;
}
.slider a:hover {
  text-decoration: none;
}
.slider a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  transition: width 0s ease, background .25s ease;
}
.slider a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #141414;
  transition: width .25s ease;
  opacity: 0.1;
}
.slider a:hover:before {
  width: 100%;
  background: #141414;
  opacity: 0.1;
  transition: width .25s ease;
}
.slider a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
.slider .main-slider {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.slider .main-slider .swiper-slide {
  height: 100%;
  display: flex;
  overflow: hidden;
}
.slider .main-slider .swiper-slide .container {
  position: relative;
  z-index: 1;
}
.slider .main-slider .swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  padding-top: 100px;
}
.slider .main-slider .swiper-slide .slide-inner:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.slider:before {
  content: "";
  width: 30%;
  height: 6px;
  background: #0091d9;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.slider .slider-fraction {
  width: 20%;
  height: 80px;
  line-height: 80px;
  background: #fff;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: #0091d9;
  font-family: 'Jost',"Argesta Display";
  font-size: 22px;
}
.slider .slider-prev {
  width: 80px;
  height: 80px;
  background: #0091d9;
  position: absolute;
  right: calc(20% + 82px);
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.slider .slider-prev:hover:before {
  opacity: 1;
}
.slider .slider-prev:before {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  left: 35px;
  top: 30px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
  opacity: 0.5;
}
.slider .slider-next {
  width: 80px;
  height: 80px;
  background: #0091d9;
  position: absolute;
  right: 20%;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.slider .slider-next:hover:before {
  opacity: 1;
}
.slider .slider-next:before {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 4px solid #fff;
  border-top: 4px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 35px;
  top: 30px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
  opacity: 0.5;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  height: 480px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-size: cover !important;
  position: relative;
}
.page-header:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.page-header .container {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-header .container h1 {
  width: 100%;
  display: block;
  font-size: 50px;
  padding-top: 10px;
}
.page-header .container p {
  width: 100%;
  display: block;
  margin: 0;
  letter-spacing: 10px;
  font-size: 22px;
}

/* SCROLL DOWN */
.scroll-down {
  width: 1px;
  height: 80px;
  background: #fff;
  position: absolute;
  left: calc(50% - 0.5px);
  bottom: 0;
  z-index: 2;
}
.scroll-down:after {
  content: "";
  width: 1px;
  height: 0;
  animation: 1s scrolldown infinite;
  background: #0091d9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@keyframes scrolldown {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    top: 0;
    height: 100%;
  }
  51% {
    top: auto;
    bottom: 0;
    height: 100%;
  }
  100% {
    top: auto;
    bottom: 0;
    height: 0;
  }
}
/* CONTENT SECTION */
.content-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  position: relative;
  padding: 100px 0;
}
.content-section.bottom-spacing {
  margin-bottom: 100px !important;
}
.content-section.top-spacing {
  margin-top: 100px !important;
}

#main {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

/* SECTION TITLE */
.section-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.section-title.text-center {
  text-align: center;
}
.section-title.text-center h6:before {
  left: calc(50% - 2vw);
  top: calc(100% + 10px);
}
.section-title.light {
  color: #fff;
}
.section-title.light h6 {
  opacity: 0.6;
}
.section-title.light h6:before {
  background: #fff;
}
.section-title h6 {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  opacity: 0.3;
  letter-spacing: 2px;
  position: relative;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
}
.section-title h6:before {
  content: "";
  width: 4vw;
  max-width: 100%;
  height: 1px;
  display: inline-block;
  background: #141414;
  position: absolute;
  left: calc(-4vw - 20px);
  top: calc(50% - 0.5px);
}
.section-title h2 {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 60px;
}

/* HOTEL SEARCH FORM */
.hotel-search {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
}
.hotel-search h6 {
  width: 100%;
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  font-size: 22px;
}
.hotel-search form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hotel-search form .form-group {
  display: inline-block;
  margin: 0 15px;
  position: relative;
}
.hotel-search form .form-group i {
  position: absolute;
  right: 25px;
  bottom: 42px;
  transform: translateY(50%);
  color: #808080;
}
.hotel-search form .form-group input[type="number"] {
  width: 100px;
}
.hotel-search form .form-group input {
  width: auto;
}
.hotel-search form .form-group select {
  width: 300px;
}
.hotel-search form .form-group label {
  width: 100%;
  display: block;
  font-size: 14px;
}

/* SIDE CONTENT */
.side-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.side-content.text-left {
  padding-right: 5vw;
}
.side-content.text-left p {
  padding-right: 10%;
}
.side-content.text-center {
  text-align: center;
  padding: 0 10%;
}
.side-content.text-center .custom-button {
  margin-left: auto;
  margin-right: auto;
}
.side-content.light {
  color: #fff;
}
.side-content.light .custom-button {
  border: 1px solid #fff;
  background: none;
}
.side-content h6 {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  opacity: 0.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.side-content h2 {
  width: 100%;
  display: block;
  margin: 0;
  font-family: "Argesta Display";
  font-size: 50px;
}
.side-content p {
  width: 100%;
  display: block;
  /* margin-top: 25px; */
  opacity: 0.7;
}
.side-content p:last-child {
  margin-bottom: 0;
}
.side-content .custom-button {
  margin-top: 40px;
}
.num_list ul {
    padding: 0;
}

.num_list ul li {
    display: inline-block;
    color: #a0a0a0;
    border-left: 5px solid #0091d9;
    padding-left: 20px;
    margin-right: 60px;
    margin-top: 30px;
}
/* SIDE IMAGE */
.side-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
}
.side-image.overlap-bottom {
  transform: translateY(100px);
}
.side-image.overlap-top {
  /* transform: translateY(-100px); */
}
.side-image.right-full {
  width: 50vw;
  float: left;
}
.side-image.left-full {
  width: 50vw;
  float: right;
}
.side-image.left-full-space {
  width: 44vw;
  float: right;
  margin-right: 6vw;
}
.side-image.right-full-space {
  width: 44vw;
  float: left;
  margin-left: 6vw;
}
.side-image.left-align {
  float: right;
  position: relative;
}
.side-image.left-align:after {
  content: "";
  width: calc(50vw - 100px);
  height: 100%;
  background: #f5f3ec;
  position: absolute;
  right: 100px;
  top: 100px;
  z-index: -1;
}
.side-image.right-align {
  float: left;
  position: relative;
}
.side-image.right-align:after {
  content: "";
  /* width: calc(50vw - 100px); */
  height: 100%;
  background: #f5f3ec;
  position: absolute;
  left: 100px;
  /* top: 100px; */
  z-index: -1;
}
.side-image .video-button {
  width: 140px;
  height: 140px;
  line-height: 140px;
  background: #fff;
  position: absolute;
  left: calc(50% - 70px);

  top: calc(50% - 70px);
  color: #0091d9;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.side-image .video-button:hover {
  background: #0091d9;
  color: #fff;
}
.side-image img {
  width: 100%;
}

/* SIDE GALLERY */
.side-gallery {
  width: calc(50vw + 15%);
  float: right;
  margin-bottom: 0;
  position: relative;
  transform: translateY(-100px);
}
.side-gallery div:first-child {
  width: calc(66.66666% - 10px);
}
.side-gallery div:nth-child(2) {
  margin-bottom: 10px;
}
.side-gallery div {
  width: calc(33.33333% - 10px);
  float: left;
  margin-right: 10px;
}

/* SIDE HOTEL BOX */
.side-hotel-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.side-hotel-box.right {
  padding-left: 100px;
}
.side-hotel-box .review {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  font-size: 13px;
}
.side-hotel-box .review i {
  display: inline-block;
  margin-right: 3px;
  color: #00aa6c;
}
.side-hotel-box .review span {
  display: inline-block;
  opacity: 0.4;
  margin-left: 8px;
}
.side-hotel-box h2 {
  width: 100%;
  display: block;
  font-size: 44px;
  font-family: "Argesta Display";
  margin-bottom: 25px;
}
.side-hotel-box p {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.side-hotel-box .info-box {
  width: 100%;
  display: flex;
  border: 1px solid #cbcbcb;
  padding: 20px;
  margin-bottom: 20px;
}
.side-hotel-box .info-box span {
  display: inline-block;
  border-left: 6px solid #0091d9;
  padding-left: 20px;
}
.side-hotel-box .info-box b {
  height: 54px;
  line-height: 1.3;
  margin-left: auto;
  font-size: 40px;
}
.side-hotel-box .info-box b small {
  display: inline-block;
  margin-right: 6px;
  font-size: 14px;
  opacity: 0.5;
}
.side-hotel-box .custom-button {
  margin-right: 30px;
}
.side-hotel-box .availability {
  line-height: 80px;
  display: inline-block;
}
.side-hotel-box .availability i {
  color: #0091d9;
}

/* CAROUSEL IMAGE BOX */
.carousel-image-box {
  width: calc(50vw + 100% / 2);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.carousel-image-box figure {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.carousel-image-box figure img {
  width: 100%;
  float: left;
}
.carousel-image-box figure figcaption {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 40px;
  color: #fff;
}
.carousel-image-box figure figcaption h5 {
  width: 100%;
  display: block;
  font-size: 32px;
  font-weight: 800;
}
.carousel-image-box figure figcaption p {
  width: 100%;
  display: block;
  margin: 0;
}

.swiper-scrollbar {
  width: 100%;
  height: 4px;
  display: inline-block;
  opacity: 1 !important;
}

/* EVENTS TAB */
.events-tab {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
.events-tab .tab-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 0;
}
.events-tab .tab-nav li {
  display: inline-block;
  margin-right: 20px;
  padding: 0 5px;
  list-style: none;
  border-bottom: 4px solid transparent;
}
.events-tab .tab-nav li.active {
  border-color: #0091d9;
}
.events-tab .tab-nav li a {
  display: inline-block;
  color: #fff;
}
.events-tab .tab-item {
  width: 100%;
  float: left;
  display: none;
  position: relative;
  overflow: hidden;
}
.events-tab .tab-item.active-item {
  display: block;
}

/* CONTENT TAB */
.content-tab {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.content-tab .tab-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
}
.content-tab .tab-nav li {
  height: 70px;
  line-height: 70px;

  display: inline-block;
  margin-right: 20px;
  padding: 0 25px;
  list-style: none;
  border: 1px solid #eee;
  margin-bottom: -1px;
}
.content-tab .tab-nav li.active {
  border-bottom: 1px solid #fff;
}
.content-tab .tab-nav li.active a {
  color: #0091d9;
  opacity: 1;
}
.content-tab .tab-nav li a {
  display: inline-block;
  font-weight: 600;
  opacity: 0.5;
}
.content-tab .tab-item {
  width: 100%;
  float: left;
  display: none;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  border-top: none;
  padding: 50px;
}
.content-tab .tab-item ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.content-tab .tab-item ul li {
  width: 33.33333%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 7px 0;
}
.content-tab .tab-item ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.content-tab .tab-item ul li figure {
  width: 50px;
  float: left;
  margin-bottom: 0;
}
.content-tab .tab-item ul li figure img {
  height: 22px;
  float: left;
}
.content-tab .tab-item ul li b {
  font-weight: 400;
  float: left;
}
.content-tab .tab-item.active-item {
  display: block;
}

/* CAROUSEL EVENTS BOX */
.carousel-events-box {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.carousel-events-box .swiper-prev {
  width: 60px;
  height: 60px;
  background: #141414;
  position: absolute;
  left: 0;
  top: 33%;
  z-index: 2;
  cursor: pointer;
}
.carousel-events-box .swiper-prev:hover:before {
  opacity: 1;
}
.carousel-events-box .swiper-prev:before {
  content: "";
  width: 15px;
  height: 15px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  left: 25px;
  top: 23px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
  opacity: 0.5;
}
.carousel-events-box .swiper-next {
  width: 60px;
  height: 60px;
  background: #141414;
  position: absolute;
  right: 0;
  top: 33%;
  z-index: 2;
  cursor: pointer;
}
.carousel-events-box .swiper-next:hover:before {
  opacity: 1;
}
.carousel-events-box .swiper-next:before {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 4px solid #fff;
  border-top: 4px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 25px;
  top: 23px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
  opacity: 0.5;
}
.carousel-events-box figure {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}
.carousel-events-box figure:before {
  background: #0091d9 !important;
}
.carousel-events-box figure img {
  width: 100%;
  display: block;
}
.carousel-events-box .content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  text-align: center;
}
.carousel-events-box .content h5 {
  width: 100%;
  display: block;
  font-size: 28px;
  font-family: "Argesta Display";
}
.carousel-events-box .content h5 a {
  display: inline-block;
  color: #fff;
}
.carousel-events-box .content h5 a:hover {
  color: #0091d9;
}
.carousel-events-box .content span {
  display: inline-block;
  margin: 4px auto;
  color: #f5f3ec;
  opacity: 0.6;
}
.carousel-events-box .content small {
  width: 100%;
  display: block;
}

/* ROOM SLIDER */
.rooms-slider {
  width: 100%;
  height: 80vh;
  max-height: 700px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.rooms-slider:before {
  content: "";
  width: 100%;
  height: 240px;
  background: #141414;
  position: absolute;
  left: 0;
  top: 0;
}
.rooms-slider .swiper-slide {
  max-width: 75%;
  background-size: cover !important;
  background-position: center !important;
  transform: scale(0.9);
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.rooms-slider .swiper-slide .room-detail {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 50px;
  position: absolute;
  left: 50px;
  bottom: 50px;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
  opacity: 0;
}
.rooms-slider .swiper-slide .room-detail .price-line {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0091d9;
  letter-spacing: 1px;
}
.rooms-slider .swiper-slide .room-detail .price-line span {
  color: #141414;
  opacity: 0.7;
}
.rooms-slider .swiper-slide .room-detail h3 {
  width: 100%;
  display: block;
  font-size: 36px;
  font-family: "Argesta Display";
  margin-bottom: 20px;
}
.rooms-slider .swiper-slide .room-detail .reviews {
  width: 100%;
  color: #888888;
  font-size: 15px;
}
.rooms-slider .swiper-slide .room-detail .reviews span {
  padding: 5px 8px;
  background: #0091d9;
  color: #fff;
  font-weight: 800;
  margin-left: 5px;
}
.rooms-slider .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.rooms-slider .swiper-slide.swiper-slide-active .room-detail {
  opacity: 1;
}

/* RECENT NEWS */
.col-md-6:nth-child(2) .recent-news {
  padding-right: 30px;
}

.col-md-6:nth-child(3) .recent-news {
  padding-left: 30px;
}

.recent-news {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.recent-news figure {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.recent-news figure img {
  width: 100%;
}
.recent-news .content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 80px;
}
.recent-news .content ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 15px;
  position: relative;
}
.recent-news .content ul:before {
  content: "";
  width: 60px;
  height: 1px;
  background: #0091d9;
  position: absolute;
  left: -80px;
  top: calc(50% - 0.5px);
}
.recent-news .content ul li {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  list-style: none;
}
.recent-news .content ul li:last-child {
  margin-right: 0;
}
.recent-news .content ul li a {
  display: inline-block;
  color: #0091d9;
  font-size: 14px;
  font-weight: 600;
}
.recent-news .content span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
  line-height: 27px;
}
.recent-news .content span:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #141414;
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}
.recent-news .content h2 {
  width: 100%;
  display: block;
  font-size: 36px;
  font-family: "Argesta Display";
  margin-top: 20px;
  margin-bottom: 0;
}

/* IMAGE */
.image {
  width: 100%;
  display: block;
}
.col-lg-12.product-content-list {
    min-height: 300px;
}
.product .imgs {position: relative;width: 78%;margin: 0;padding: 0;overflow: hidden;}
.product .imgs .swiper {width: 100%;height: 100%;}
.product .imgs .swiper-slide {text-align: left;font-size: 18px;background: #fff0;display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: left;-ms-flex-pack: center;-webkit-justify-content: left;justify-content: left;-webkit-box-align: left;-ms-flex-align: left;-webkit-align-items: left;align-items: left;}
.product .imgs .swiper-slide img {display: block;width: 100%;object-fit: cover;}
.product .imgs .swiper {width: 100%;margin-left: auto;margin-right: 0;}
.product .imgs .swiper-slide {background-size: cover;background-position: center;}
.product .imgs .mySwiper2 width: 73%;}
.product .imgs .mySwiper {box-sizing: border-box;position: absolute;top: 0;}
.product .imgs .mySwiper .swiper-slide {border: 1px solid #c5c5c5;opacity: 0.6;}
.product .imgs .mySwiper .swiper-slide.swiper-slide-thumb-active {opacity: 1;}
.product .imgs .swiper-slide img {display: block;width: 100%;object-fit: cover;}


/* TESTIMONIAL BOX */
.testimonial-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  background: #0091d9;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-box.bottom {
  margin-bottom: -100px;
}
.testimonial-box small {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.testimonial-box small i {
  display: inline-block;
  margin: 0 3px;
}
.testimonial-box h4 {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  /* font-family: "Argesta Display"; */
}
.testimonial-box p {
  width: 100%;
  margin-bottom: 40px;
  font-size: 15px;
}
.testimonial-box .custom-button {
  margin: 0 auto;
}

/* PACKAGE BOX */
.package-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
  color: #fff;
}
.package-box h4 {
  width: 100%;
  display: block;
  font-size: 28px;
  margin-bottom: 15px;
}
.package-box p {
  width: 100%;
  display: block;
  margin-bottom: 35px;
  text-align: justify;
}
.package-box a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-bottom: 3px solid #eee;
  font-size: 15px;
}

/* MEMBER BOX */
.member-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.member-box:hover figure img {
  opacity: 0.6;
}
.member-box:hover figure ul {
  opacity: 1;
  visibility: visible;
}
.member-box figure {
  width: 100%;
  display: block;
  margin-bottom: 0;
  position: relative;
  background: #141414;
}
.member-box figure * {
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.member-box figure ul {
  width: 44px;
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 30px;
  bottom: 60px;
  opacity: 0;
  visibility: hidden;
}
.member-box figure ul li {
  width: 100%;
  display: block;
  margin-bottom: 5px;
  padding: 0;
  list-style: none;
}
.member-box figure ul li:last-child {
  margin-bottom: 0;
}
.member-box figure ul li a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  background: #0091d9;
  color: #fff;
}
.member-box figure img {
  width: 100%;
  display: block;
}
.member-box .content {
  width: calc(100% - 30px);
  display: inline-block;
  background: #fff;
  margin-top: -30px;
  padding: 30px;
  position: relative;
}
.member-box .content small {
  width: 100%;
  display: block;
  margin-bottom: 5px;
}
.member-box .content h5 {
  width: 100%;
  display: block;
  font-size: 28px;
  font-family: "Argesta Display";
  margin-bottom: 25px;
  opacity: 0.7;
}
.member-box .content a {
  display: inline-block;
  text-decoration: underline;
  color: #0091d9;
  font-weight: 600;
  font-size: 15px;
}

/* VIDEO BOX */
.video-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 40%;
}
.video-box .play-btn {
  width: 140px;
  height: 140px;
  line-height: 140px;
  display: inline-block;
  background: #fff;
  color: #0091d9;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.video-box .play-btn:hover {
  background: #0091d9;
  color: #fff;
}
.video-box h2 {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

/* ROOMS FITER */
.rooms-filter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.rooms-filter h6 {
  display: inline-block;
  font-weight: 600;
}
.rooms-filter .price-range {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  padding-right: 30px;
}
.rooms-filter .price-range .range-slider__value {
  float: right;
  margin-top: -56px;
  font-weight: 800;
  color: #0091d9;
}
.rooms-filter .price-range .range-slider__value:before {
  content: "$";
}
.rooms-filter .price-range .range-slider {
  width: 100%;
}
.rooms-filter .specifications {
  width: 50%;
  display: inline-block;
  margin: 0;
  padding: 0;
  padding-left: 30px;
}
.rooms-filter .specifications ul {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.rooms-filter .specifications li {
  display: inline-block;
  margin-right: 20px;
  padding: 0;
  list-style: none;
}

/* ROOMS LIST */
.rooms-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.rooms-list li {
  width: 50%;
  display: inline-block;
  margin: 0;
  margin-top: 50px;
  padding: 0;
  padding-right: 30px;
  list-style: none;
}
.rooms-list li:nth-child(1) {
  margin-top: 0;
}
.rooms-list li:nth-child(2) {
  margin-top: 0;
}
.rooms-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
}

/* ROOM BOX */
.room-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.room-box figure {
  width: 100%;
  display: block;
  margin: 0;
}
.room-box figure img {
  width: 100%;
}
.room-box .content {
  width: calc(100% - 50px);
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  margin-top: -50px;
  margin-left: 50px;
  position: relative;
  z-index: 1;
  padding: 50px;
  padding-right: 0;
}
.room-box .content .price-line {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0091d9;
  letter-spacing: 1px;
}
.room-box .content .price-line span {
  color: #141414;
  opacity: 0.7;
}
.room-box .content h3 {
  width: 100%;
  display: block;
  font-size: 36px;
  font-family: "Argesta Display";
  margin-bottom: 20px;
}
.room-box .content .bottom-specs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}
.room-box .content .bottom-specs .icons {
  width: 50%;
  display: inline-block;
}
.room-box .content .bottom-specs .icons img {
  height: 25px;
  margin-right: 5px;
}
.room-box .content .bottom-specs .reviews {
  width: 50%;
  text-align: right;
  color: #888888;
  font-size: 15px;
}
.room-box .content .bottom-specs .reviews span {
  padding: 5px 8px;
  background: #0091d9;
  color: #fff;
  font-weight: 800;
  margin-left: 5px;
}

/* ROOM TYPE */
.room-type {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.room-type .price-line {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0091d9;
  letter-spacing: 1px;
}
.room-type .price-line span {
  color: #141414;
  opacity: 0.7;
}
.room-type h3 {
  width: 100%;
  display: block;
  font-size: 80px;
  font-family: "Argesta Display";
  margin-bottom: 20px;
  text-indent: -4px;
}
.room-type small {
  width: 100%;
  display: block;
  opacity: 0.5;
  font-size: 16px;
}

/* RECENT TESTIMONIAL */
.recent-testimonial {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  padding: 50px;
  margin-bottom: 50px;
}
.recent-testimonial span {
  width: 100%;
  display: block;
  margin-bottom: 5px;
}
.recent-testimonial span b {
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
}
.recent-testimonial span i {
  color: #0091d9;
  display: inline-block;
  margin: 0 2px;
  font-size: 14px;
}
.recent-testimonial small {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  opacity: 0.5;
}
.recent-testimonial p {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 19px;
  font-family: "Argesta Display";
}

/* ROOM GALLERY */
.room-gallery-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.room-gallery-top .swiper-slide {
  max-width: 40%;
}

.room-gallery-thumbs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.room-gallery-thumbs .swiper-slide {
  background: #141414;
}
.room-gallery-thumbs .swiper-slide:hover img {
  opacity: 1;
}
.room-gallery-thumbs .swiper-slide img {
  opacity: 0.5;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}

/* ROOM INFO BOX */
.room-info-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  border: 1px solid #eee;
  margin: 30px 0;
}
.room-info-box h6 {
  width: 100%;
  display: block;
  font-size: 26px;
  font-family: "Argesta Display";
  margin-bottom: 15px;
  color: #0091d9;
}
.room-info-box p {
  width: 100%;
  display: block;
}
.room-info-box p:last-child {
  margin-bottom: 0;
}
.room-info-box ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-top: 20px;
  padding: 0;
}
.room-info-box ul li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 5px 0;
  padding: 5px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.room-info-box ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.room-info-box ul li figure {
  width: 50px;
  float: left;
  margin-bottom: 0;
}
.room-info-box ul li figure img {
  height: 22px;
  float: left;
}
.room-info-box ul li b {
  width: 30%;
  font-weight: 600;
  float: left;
}
.room-info-box ul li span {
  width: 65%;
  float: left;
}

/* MEETING EVENT BOX */
.meeting-event-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.meeting-event-box figure {
  width: 100%;
  display: block;
  margin: 0;
}
.meeting-event-box figure img {
  width: 100%;
  border: 1px #b9b9b9 solid;
}
.meeting-event-box .content {
  width: calc(100% - 50px);
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding: 30px;
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 0;
}
.meeting-event-box .content h5 {
  width: 100%;
  display: block;
  font-size: 28px;
}
.meeting-event-box .content h5 a {
  display: inline-block;
}
.meeting-event-box .content h5 a:hover {
  color: #0091d9;
}
.meeting-event-box .content span {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  opacity: 0.4;
  text-transform: uppercase;
}
.meeting-event-box .content small {
  width: 100%;
  display: block;
}

/* SPECIAL OFFER BOX */
.special-offer-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.special-offer-box figure {
  width: 100%;
  display: block;
  margin: 0;
}
.special-offer-box figure img {
  width: 100%;
}
.special-offer-box .content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 0;
}
.special-offer-box .content span {
  width: 100%;
  display: block;
  margin-bottom: 0;
  opacity: 0.4;
  font-weight: 600;
  font-size: 13px;
}
.special-offer-box .content h5 {
  width: 100%;
  display: block;
  font-size: 28px;
  font-family: "Argesta Display";
}
.special-offer-box .content h5 a {
  display: inline-block;
}
.special-offer-box .content h5 a:hover {
  color: #0091d9;
}
.special-offer-box .content p {
  width: 100%;
  display: block;
  opacity: 0.7;
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 12px;
}
.special-offer-box .content small {
  display: inline-block;
  background: #0091d9;
  padding: 4px 8px;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
}

/* EVENT HEADLINE */
.event-headline {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.event-headline .rating {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.event-headline .rating i {
  color: #0091d9;
  display: inline-block;
  margin-right: 4px;
  font-size: 15px;
}
.event-headline h3 {
  width: 100%;
  display: block;
  font-size: 50px;
  font-family: "Argesta Display";
  margin-bottom: 20px;
  text-indent: -4px;
}
.event-headline address {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.event-headline address span {
  display: inline-block;
}
.event-headline address span:first-child {
  margin-right: 10%;
}
.event-headline address span i {
  display: inline-block;
  color: #0091d9;
  margin-right: 10px;
}

/* CONTACT FORM */
.contact-form {
  width: 100%;
  display: block;
}
.contact-form input[type="text"] {
  width: 100%;
  border-radius: 0px;
}
.contact-form input[type="email"] {
  width: 100%;
  border-radius: 0px;
}
.contact-form textarea {
  width: 100%;
  height: 80px;
  border-radius: 0px;
  padding-left: 30px;
}

/* CONTACT BOX*/
.contact-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #0091d9;
  color: #fff;
  padding: 50px;
  margin: 15px 0;
}
.contact-box h6 {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  font-size: 22px;
  font-family: "Argesta Display";
}
.contact-box address {
  width: 100%;
  display: block;
  margin: 0;
}
.contact-box address strong {
  width: 100%;
  display: block;
  margin-top: 5px;
}

/* GOOGLE MAPS */
.google-maps {
  width: 100%;
  height: 560px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #0091d9;
}
.google-maps iframe {
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: overlay;
  filter: grayscale(1);
}
.google-maps i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  text-align: center;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  font-size: 40px;
  color: #0091d9;
  border-radius: 50%;
}
.google-maps:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* NEWS BOX */
.news-box {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 100px;
}
.news-box.single .content {
  padding-left: 0;
}
.news-box.single .content .category:before {
  display: none;
}
.news-box.single .content .author {
  margin-bottom: 30px;
}
.news-box:last-child {
  margin-bottom: 0;
}
.news-box:hover .content h3 a {
  background-size: 100% 100%;
}
.news-box figure {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background: #0091d9;
}
.news-box figure img {
  width: 100%;
  max-width: inherit;
}
.news-box .content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 80px;
}
.news-box .content .category {
  display: inline-block;
  color: #0091d9;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.news-box .content .category:before {
  content: "";
  width: 60px;
  height: 1px;
  background: #0091d9;
  position: absolute;
  left: -80px;
  top: calc(50% - 0.5px);
}
.news-box .content .date {
  display: inline-block;
  font-size: 14px;
  opacity: 0.5;
  font-weight: 600;
  margin-left: 15px;
}
.news-box .content .date:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #141414;
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
  transform: translateY(-2px);
}
.news-box .content h3 {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Argesta Display";
}
.news-box .content h3 a {
  display: block;
  color: #141414;
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .30s ease-in-out;
  -ms-transition: all .30s ease-in-out;
  -o-transition: all .30s ease-in-out;
  transition: all .30s ease-in-out;
}
.news-box .content h3 a:hover {
  color: #0091d9;
  text-decoration: none;
}
.news-box .content .author {
  width: 100%;
  display: block;
  margin-bottom: 0;
  font-size: 13px;
}
.news-box .content .author img {
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}
.news-box .content .author b {
  font-weight: 600;
}
.news-box .content h6 {
  font-size: 24px;
  line-height: 1.7;
  margin: 30px 0;
}
.news-box .content strong {
  font-weight: 600;
}
.news-box .content figure {
  margin: 30px 0;
}
.news-box .content blockquote {
  width: 100%;
  display: block;
  padding: 40px;
  background: #f5f3ec;
  color: #0091d9;
  font-size: 22px;
  font-family: "Argesta Display";
  margin: 30px 0;
}
.news-box .content ul {
  padding-left: 20px;
}
.news-box .content ul li {
  margin: 4px 0;
}

/* SIDEBAR */
.sidebar {
  width: 100%;
  display: block;
  padding-left: 30px;
}
.sidebar .widget {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #f5f3ec;
  border-right: 4px solid #f5f3ec;
  border-bottom: 4px solid #f5f3ec;
  padding: 35px;
  margin-bottom: 35px;
  position: relative;
}
.sidebar .widget * {
  position: relative;
}
.sidebar .widget .widget-title {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 22px;
  color: #0091d9;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-family: "Argesta Display";
}
.sidebar .widget .widget-title:after {
  content: "";
  width: 50px;
  height: 4px;
  background: #0091d9;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.sidebar .widget .widget-title:before {
  content: "";
  width: 100%;
  height: 4px;
  background: #f5f3ec;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: difference;
}
.sidebar .widget form {
  width: 100%;
  display: block;
}
.sidebar .widget form input[type="submit"] {
  margin-top: 10px;
  background: #141414;
  color: #fff;
}
.sidebar .widget .categories {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.sidebar .widget .categories li {
  width: 100%;
  display: block;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}
.sidebar .widget .categories li a {
  color: #141414;
  font-size: 19px;
}
.sidebar .widget .categories li a:hover {
  color: #0091d9;
}
.sidebar .widget .widget-gallery {
  width: calc(100% + 4px);
  float: left;
  margin: 0 -2px;
  padding: 0;
}
.sidebar .widget .widget-gallery li {
  width: 50%;
  float: left;
  margin: 0;
  padding: 2px;
  list-style: none;
}

/* PAGINATION */
.pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.pagination .page-item {
  display: inline-block;
}
.pagination .page-item .page-link {
  height: 60px;
  line-height: 60px;
  padding: 0 40px;
  border-radius: 0 !important;
  font-size: 12px;
  font-weight: 600;
  color: #141414;
  outline: none !important;
}
.pagination .page-item .page-link:focus {
  outline: none !important;
}

/* NEWSLETTER BOX */
.newsletter-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 20%;
}
.newsletter-box h6 {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  opacity: 0.3;
  letter-spacing: 2px;
  position: relative;
}
.newsletter-box h6:before {
  content: "";
  width: 4vw;
  max-width: 100%;
  height: 1px;
  display: inline-block;
  background: #141414;
  position: absolute;
  left: calc(50% - 2vw);
  top: calc(100% + 10px);
}
.newsletter-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  font-family: "Argesta Display";
  font-size: 60px;
}
.newsletter-box form {
  width: 100%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #cbcbcb;
  padding: 10px;
  margin-bottom: 15px;
}
.newsletter-box form input[type="email"] {
  flex: 1;
  height: 60px;
  border: none;
  padding: 0 10px;
}
.newsletter-box form input[type="search"] {
  flex: 1;
  height: 60px;
  border: none;
  padding: 0 10px;
}
.newsletter-box form input[type="submit"] {
  height: 60px;
  border: none;
}
.newsletter-box small {
  width: 100%;
  display: block;
}
.newsletter-box small a {
  display: inline-block;
}
.newsletter-box small a:hover {
  text-decoration: none;
}

/* FOOTER BAR */
.footer-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  padding: 40px 0;
}
.footer-bar i {
  font-size: 30px;
  display: inline-block;
  margin-right: 10px;
}
.footer-bar h6 {
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  font-size: 24px;
  opacity: 0.4;
}
.footer-bar strong {
  font-size: 15px;
}
.footer-bar figure {
  margin-left: auto;
  margin-bottom: 0;
}
.footer-bar figure img {
  height: 40px;
}

/* FOOTER */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #141414;
  padding-top: 60px;
  color: #fff;
}
.footer .widget-title {
  width: 100%;
  display: block;
  font-size: 22px;
  font-family: "Argesta Display";
  margin-bottom: 15px;
}
.footer p {
  width: 100%;
  display: block;
  line-height: 2em;
}
.footer-ri {
  text-align: right;
  margin-bottom: 20px;
}
.footer p a {
  color: #fff;
}
.footer p a:hover {
  text-decoration: underline;
}
.footer .bottom-bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0;
  font-size: 14px;
  position: relative;
  margin-top: 0;
}
.footer .bottom-bar:before {
  content: "";
  width: calc(100% );
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  /* left: -50px; */
  opacity: 0.2;
}
.footer .bottom-bar span {
  display: inline-block;
}
.footer .bottom-bar .footer-social {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.footer .bottom-bar .footer-social li {
  display: inline-block;
  margin-left: 10px;
  padding: 0;
  list-style: none;
}
.footer .bottom-bar .footer-social li a {
  display: inline-block;
  color: #fff;
}

.nav-menu-cont{display:none;}

.bg_s{background-image: linear-gradient(to right, #0090d7 , #00b0f0);}
.page-header .container h6 {
    width: 100%;
    display: block;
    font-size: 15px;
    font-weight: 800;
    opacity: 0.3;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-family: 'Jost', sans-serif;
}

.page-header .container h6:before {
    content: "";
    width: 4vw;
    max-width: 100%;
    height: 1px;
    display: inline-block;
    background: #ffffff;
    position: absolute;
    left: calc(50% - 2vw);
    top: calc(100% + 10px);
} 
.top-line:before {
    content: "";
    width: 30%;
    height: 6px;
    background: #0091d9;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.page-navbar {
    position: relative;
}
.testimonial-box.bottom h1 {
    font-weight: 900;
    display: inline-block;
    text-align: center;
    width: 100%;
}
.image.video-images {
    width: auto;
    display: inline-block;
    position: relative;
}

p.g-word {
    color: #a0a0a0;
}
.package-box h4 span {
    font-size: 24px;
    font-family: 'Jost', sans-serif;
}
.bg-grly{background-color:#f2f2f2;}
.history-info li {
    list-style: none;
}

.history-info .services__info-block--active h4 {
    color: #0091d9;
}

.history-info {
    border-top: 3px #d1d1d1 solid;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    background: url(../images/line.png)  repeat-y;
    background-repeat-x: no-repeat;
    background-position-x: 170px;
}
.history-info .services__title{position: relative;overflow: hidden;font-size: 16px;font-weight: normal;margin-left: 0;background: url(../images/line-c.png);background-repeat: no-repeat;background-position-x: 170px;}
.history-info .services__title a:first-child{font: 30px 'Microsoft YaHei',sans-serif;font-weight: normal;margin-top: 5px;}
.history-info .services__title a:first-child:hover{font-weight:bold;}
.history-info .services__text{margin:0 0 0 0;/* padding-left: 20px; */font: 14px 'Microsoft YaHei',sans-serif;line-height:1.5;padding-bottom: 35px;display:none;}
.history-info .services__info-block--active .services__text{display: block;}
.history-info .m_23{padding: 0;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;width: 95%;/* display: inline-block; */float: left;text-align: left;margin: 0;}
.history-info .m_23 em{color: #a0a0a0;font-weight: normal;width: 70%;font-style: normal;margin-left: 140px;font-size: 15px;padding: 0px 20px 0px 140px;/* border-left: 1px solid #ccc; */display: inline-block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.history-info .services__info-block--active  .m_23 em{color: #141414;font-style: normal;margin-left: 140px;font-size: 15px;/* padding: 30px 20px 30px 140px; *//* border-left: 1px solid #ccc; */display: inline-block;}
.history-info .services__title a:first-child:hover{font-weight:normal;}
.history-info .square--toggle{font-weight: normal;width: 5%;font-size: 16px;padding-top: 22px;padding-bottom: 14px;text-align: right;cursor: pointer;display: inline-block;}
.history-info .square--toggle:hover{color: #00538c;}
.history-info .square--toggle .fa-minus2{width: 18px;height: 18px;-webkit-font-smoothing: subpixel-antialiased;line-height: 16px;background: #0091d9;color: #ffffff;text-align:center;display: block;margin-left: auto;border-radius: 18px;}
.history-info .square--toggle .fa-minus2:before { content: "-";   }
.history-info .square--toggle .fa-plus2{width: 18px;height: 18px;line-height: 15px;text-align: center;background: #919191;color:#ffffff;display: inline-block;border-radius: 18px;}
.history-info .square--toggle .fa-plus2:before { content: "+";   }
.history-info .services__info-block--active .square--toggle{float: right;}
.history-info .brief{margin-top:30px;padding-left: 336px;}
.history-info .clearfix.services__title h4 {display: inline-block;padding: 20px 0;margin-bottom: 0;}
.bg-fixed {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
}
.f-word{color:#fff;}
h5 {
    font-size: 1.15rem;
}
.side-content h5 {
    line-height: 2em;
    margin-top: 30px;
}
div#er-1378  .nav-menu li a {
    max-width: 220px;
}
.list-foot .jc_share{/* display: inline-flex; */}
.list-foot .jc_share a {color: #ffffff;border: 1px solid #ffffff;border-radius: 40px;text-align: center;padding: 5px;margin: 0;height: 40px;width: 40px;float: none;background: none;line-height: 27px;margin-right: 10px;font-size: 16px;}
.footer-bar strong a {
    color: #fff;
}
.row.footer-menu a {
    color: #fff;
}
.bottom-bar a {
    color: #fff;
}


/* NEWSLETTER BOX */

.product  .newsletter-box h6 {
  width: 100%;
  display: block;
  font-size: 15px;
  font-weight: 800;
  opacity: 0.3;
  letter-spacing: 2px;
  position: relative;
  color: #e1e1e1;
}
.product .newsletter-box h6:before {
  content: "";
  width: 4vw;
  max-width: 100%;
  height: 1px;
  display: inline-block;
  background: #e1e1e1;
  position: absolute;
  left: calc(50% - 2vw);
  top: calc(100% + 10px);
}
.product .newsletter-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  color: #fff;
}
.product .newsletter-box form {
  border: 1px solid #ffffff;
  background: #fff;
}
.product .newsletter-box form input[type="email"] {
  flex: 1;
  height: 60px;
  border: none;
  padding: 0 10px;
}
.product .newsletter-box form input[type="search"] {
  flex: 1;
  height: 60px;
  border: none;
  padding: 0 10px;
}
.product .newsletter-box form input[type="submit"] {
  height: 60px;
  border: none;
}
.product .newsletter-box small {
  width: 100%;
  display: block;
  color: #e1e1e1;
}
.product .newsletter-box small a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.product .newsletter-box small a:hover {
  text-decoration: none;
}
.product .meeting-event-box figure img {
  width: 100%;
  border: 1px #ffffff solid;
}
.product-bg {background:#f2f2f2}
.product-nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: block;
    padding: 28px;
    }
.product-nav ul li {
    display: inline-block;
    flex: 1;
    text-align: center;
    position: relative;
}

.product-nav ul {
    line-height: 3em;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
}



.product-nav ul li a {
    padding: 0;
}


.product-nav ul li:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 30%;
    content: "";
    height: 1.2em;
    line-height: 2em;
    width: 1px;
    border-right: 1px #ccc solid;
}
.product-nav ul li:first-child:before {
    display:none;
   
}

.pageNav {
	text-align: center;
	height: auto;
	margin-top: 20px;
	margin-bottom: 40px;
	color: #666;
}

	.pageNav font, .pageNav span, .pageNav a {
		display: inline-block;
		width: 50px;
		height: 50px;
		line-height: 50px;
		overflow: hidden;
		font-size: 15px;
		border: 1px solid #f2f2f2;
		color: #363636;
		background: #f2f2f2;
	}

		.pageNav font.current, .pageNav span.current {
			background: #0091d9;
			color: #fff;
		}

		.pageNav font.disabled, .pageNav span.disabled {
			color: #adaaad;
		}

		.pageNav a, .pageNav a:link, .pageNav a:visited {
			font-size: 15px;
			border: 1px solid #f2f2f2;
			color: #333;
			white-space: nowrap;
			background-color: #ffffff;
		}

			.pageNav a:hover {
				background-color: #0091d9;
				color: #fff;
			}

			.pageNav a.current {
				background: #f7f7f7;
				color: #fff;
			}

			.pageNav a.disabled {
				color: #adaaad;
			}

	.pageNav .page-arrow {
		font-family: simsun;
	}



	.img_lidtC {
    line-height: 3em;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.li {
    display: inline-block;
    flex: 1;
    text-align: center;
    padding: 10px;
}

.nli.fl17 {
    background: #fff;
    padding: 20px 5px 10px 5px;
    border-radius: 20px;
    position: relative;
}

.li:first-child{
   margin-top:0;
}
.li:nth-child(2){
   margin-top:40px;
}
.li:nth-child(3){
   margin-top:80px;
}
.li:nth-child(5){
   margin-top:40px;
}
.li:nth-child(4){
   margin-top:80px;
}
.bg_g50:before{
    background: #f2f2f2;
    content: "";
    height: 600px;
    width: 100%;
    position: absolute;
    top: 0;
}
.bg_g50 .list-foot .jc_share a {
    color: #575757;
    border: 1px solid #575757;
    margin-top: 20px;
    margin-bottom: 10px;
}
.list-c-v {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1em;
}

.list-c-v span {
    margin-right: 10px;
}
.list-c-v .line{
    display: inline-block;
    left: 0;
    width: 100px;
    height: 1px;
    position: relative;
    margin: 0 30px 0 20px;
}
.list-c-v .line:before{
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: -6px;
	line-height: 7px;
	background: #ccc;
	overflow: hidden;
	content: "";
}

.new-show .list-c-v {
    color: #e1e1e1;
    text-align: left;
}
.slider-detail-area .new-show h1 span{
    text-align: left;
    line-height: 1.4em;
}
.slider-detail-area .new-show h1 {
    text-align: left;
    margin-bottom: 0;
}
.list-c-v .line {
    opacity: 0.5;
}

.new-show .list-c-v i {
    margin-right: 3px;
}



/* ===================================
        Slider area
====================================== */

.slider-area{
    position: relative;
    /*margin-top: -40px;*/
    /*height: 100vh;*/
    /*transform: translateY(-40px);*/
}

/* overlay */
.slider-area .bg-overlay{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.slider-area .bg-overlay{
    background-image: linear-gradient(45deg, #1895d3, #5053b7);
    background: linear-gradient(-45deg, #ee7752, #5053b7, #1895d3, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    width: 75%;
    left: 0;
}

.slider-area .container{
    padding-top: 100px;
    padding-bottom: 100px;
}
.slider-area .container .inner-bg-overlay{
    position: absolute;
    /*width: 50%;*/
    left: 0;
    right: 12%;
    bottom: 0;
    top: 0;
}
/*slider style css*/

.slider-area .slider-detail{
    display: flex;
    align-items: center;
}
.slider-area .slider-detail .slider-slide.slick-active{
    /*animation: 1s fadeInUp;*/
}
.slider-area .slider-detail .slider-slide .slider-inner-content{
    width: 90%;
    overflow: hidden;
}
.slider-area .slider-detail .slider-slide .slider-inner-content .slide-heading{
    margin-bottom: 30px;
}
.slider-area .slider-detail .slider-slide .slider-inner-content .slide-heading span{
    display: block;
    color: #fff;
    height: 3em;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.slider-area .slider-detail .slider-slide .slider-inner-content .slide-text{
    color: #e1e1e1;
    margin-bottom: 30px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.slider-area .slider-arrows{
    position: absolute;
    right: -7%;
    top: 50%;
    transform: translateY(-50%);
}
.slider-area .slider-arrows .slider-arr{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #202020;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
}
.slider-area .slider-arrows .slider-arr:hover{
    background-color: #4974b9;
}
.slider-area .slider-arrows .slider-arr-up{
    margin-bottom: 15px;
    padding-bottom: 1px;
}
.slider-area .slider-arrows .slider-arr-down{
    padding-top: 1px;
}
.slider-area .slider-arrows .slider-arr i{
    color: #FFFFFF;
    font-size: 16px;
}
.slider-area img{
    width: auto;
    /* max-width: max-content; */
    margin: 15px;
    /* padding: 15px; */
    box-shadow: 0 10px 15px 0 rgba(0,0,0,0.2),0 6px 15px 0 rgba(0,0,0,0.19) !important;
}
span.btn.anim-btn.scroll {
    padding: 0;
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    border-radius: 0;
}
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px){
.slider-area .bg-overlay {
    display: inline-block;
    width: 100%;
}
.slider-area .slider-arrows {
    position: absolute;
    bottom: 25%;
    transform: translateY(50%);
    /* width: 100%; */
    right: 7%;
}
.slick-slider .slick-track, .slick-slider .slick-list{margin-bottom: 20px;}
.slider-area .slider-detail .slider-slide .slider-inner-content{width:100%;text-align: justify;}
}

.news-list ul li {
    display: inline-block;
}

.news-list ul {
    line-height: 3em;
    padding: 30px 0;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.news-list.default-padding {
    padding-top: 0;
}

.news-list ul li a {
    padding: 20px;
}

.news-list .list-cont .item {padding: 80px 0 80px 0;border-bottom: 1px solid #d1d1d1;}
.news-list .list-cont .item .date h3 {color: #b2b2b2;line-height: 24px;font-family: Bahnschrift;}
.news-list .list-cont .item .title h3{
    line-height: 1.3em;
    margin-bottom: 0;
}
.icon-news-more {
    height: 50px;
    display: inline-block;
    line-height: 50px;
    border-radius: 50px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.icon-news-more i {
    color: #b2b2b2;
}

@media (max-width: 1023px) {
.news-list .list-cont .item {
    padding: 20px 0;
  
}
.news-list .col-6.title {
    padding: 0;
}
.icon-news-more {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
}

}
.news-list .list-cont .item:hover .icon-news-more {
    /* background: #f2f2f2; */
}

.news-list .list-cont .item:hover {
    border-bottom: 1px solid #212121;
}
.news-list ul li a.active, .news-list ul li a:hover {
    color: #212121;
}
.news-details{
    padding-left: 90px;
    border-left: 1px solid #ccc;
    min-height: 600px;
}
.news-details h1 {
    margin-bottom: 2em;
}

.news-details p {
    line-height: 2em;
    margin-bottom: 2em;
    /* letter-spacing: 1px; */
    text-align: justify;
}
@media (max-width: 1023px) {
    .news-details{
    padding-left: 0;
    border-left: none;
}
}
.news-list ul li:before {
    content: "";
    height: 1.2em;
    line-height: 2.3em;
    width: 1px;
    border-right: 1px #ccc solid;
    position: relative;
}
.news-list ul li:first-child:before {
    display:none;
   
}
.news-list .list-cont .item .date h1 {
    font-family: Bahnschrift;
    font-size: 50px;
}

.news-list .list-cont .title p {
    color: #b2b2b2;
    margin: 20px 0;
}

.news-list .list-cont .title .more {text-transform: uppercase;color: #141414;font-weight: bold;}

.news-list .list-cont img {
    max-width: 300px;
    width: 100%;
}
.news-list.news-detail-area .list-cont img {
    max-width: 100%;
    width: auto;
}
.slider-detail-area{
    position: relative;
    padding: 70px 0;
}
.slider-detail-area .bg-overlay {
    background-image: linear-gradient(45deg, #1895d3, #5053b7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-detail-area h1 span {
    color: #fff;
    margin-top: 10px;
    display: block;
}

.news-detail-area.news-list .list-cont .item {
    padding: 0;
    border: 0;
}
.news-detail-area .list-foot {text-align:right}
.news-detail-area .list-foot .jc_share a {
    color: #212529;
    border: 1px solid rgba(0,0,0,.5);
    height: 35px;
    line-height: 20px;
    width: 35px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 10px;
}
.article_content_line {margin-left: 75px;padding-left: 90px;border-left: 1px solid #ccc;padding-right: 90px;border-right: 1px solid #ccc;}
.article_content {
    min-height: 500px;
}
.page-box .prev-page,.page-box .next-page {
    color: #a0a0a0;
    margin-bottom: 10px;
}
.list-cont p.no-data {
    text-align: center;
    margin: 50px;
}
.map-cont{width: 100%;}
div#mymap {
    height: 480px;
    z-index: 1;
    width: 100%;
}
.service_box .testimonial-box.bottom {
    background: #476685;
    margin-bottom: 0;
}

.service_box .testimonial-box.bottom .custom-button.light {
    min-width: 180px;
}
section.content-section.bg_lx {
    background-image: linear-gradient(45deg, #1895d3, #5053b7);
    color: #fff;
}

.bg_lx .section-title h6:before {
    color: #fff;
    background: #fff;
}

.bg_lx p {
    color: #e1e1e1;
    font-family: Bahnschrift;
}
.col-md-4.text-center.num-line {
    border-right: 1px solid rgb(255 255 255 / 0.1);
    margin-bottom: 50px;
}

.col-md-4.text-center.num-line h3 {
    margin-bottom: 30px;
}

.row.text-center .num-line:first-child, .row.text-center .num-line:nth-child(4n+4) {
     border-left: 1px solid rgb(255 255 255 / 0.1);
}
.col-lg-4.verify_code {text-align: right;padding-left: 0;}
.verify_code img {
    width: 100%;
    height: 60px;
    border: 1px solid #cecece;
}

 .li .nli {
    transition: all .4s;
}
 .dian {
    position: absolute;
    /* width: 1rem; */
    /* height: 1rem; */
    margin-top: -.2rem;
    transition: all .3s;
    left: 0;
    bottom: -50px;
    width: 100%;
    height: 1em;
}

.hisbox .li .imgbox {
    
transition: all .3s ease;
    
animation: photo-object-floating 1.5s infinite ease-in-out alternate;
};
.hisbox .li:hover  .imgbox  {
    opacity: 1;
    animation: none;
};

@-webkit-keyframes photo-object-floating {
    0% {
       
        opacity: 0.9;
    }

    100% {
        
        opacity: 0.3;
    }
}

@keyframes photo-object-floating {
    0% {
      
        opacity: 0.9;
    }

    100% {
        
        opacity: 0.3;
    }
}


.hisbox .li {
    
    transform: translate(0, -20px);
    transition: all .3s ease;
   
    animation: photo-object-floating1 1.5s infinite ease-in-out alternate;
};



@-webkit-keyframes photo-object-floating1 {
    0% {
        -webkit-transform: translate(0, 10px);        
        transform: translate(0, 10px);
        
    }

    100% {
        -webkit-transform: translate(0, 20px);        
        transform: translate(0, 20px);
        
    }
}

@keyframes photo-object-floating1 {
    0% {
        -webkit-transform: translate(0, 10px);        
        transform: translate(0, 10px);
       
    }

    100% {
        -webkit-transform: translate(0, 20px);        
        transform: translate(0, 20px);
        
    }
}



.hisbox .dian .sp {
    width: 1.5em;
    height: 1.5em;
    transform: scale(0.4, 0.4) translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: left top;
    z-index: 2;
    transition: all .3s;
    }
.hisbox .dian .sp2 {
    animation-play-state: running;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}
.hisbox .dian .sp2 {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: rgb(255 255 255 / 30%);
    transition: all .3s;
}
.hisbox .li:hover .imgbox  {
    opacity: 1;
    animation: none;
};

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

section.content-section.bg_dt  {
    background: linear-gradient(-45deg, #ee7752, #5053b7, #1895d3, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
a.button--quidel {
    overflow: hidden;
    background: #ffffff;
    color: #fff;
    padding: 10px 15px;
    position: relative;
}
.button--quidel::before {
    background: rgb(51 94 162);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: top_title 5s ease infinite;
}
.button--quidel::before, .button--quidel::after {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: inherit;
    box-sizing: border-box;
}

.button--quidel::after {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #00368b;
}

span {
    z-index: 1;
    position: relative;
}

@keyframes top_title {
  0% {
      top:0;
  }
 
  100% {
      top: 100%;
  }
}




/* RESPONSIVE MEDIUM  */
@media only screen and (max-width: 1199px), only screen and (max-device-width: 1199px) {
  .hotel-search form .form-group {
    margin: 15px;
  }

  .side-image .video-button {
    width: 120px;
    height: 120px;
    line-height: 120px;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
  }

  .side-image.overlap-bottom {
    transform: translateY(0);
  }

  .side-image.left-align:after {
    display: none;
  }

  .side-image.right-align:after {
    display: none;
  }

  .side-image.overlap-top {
    transform: translateY(0);
    width: 100%;
  }

  .side-content.text-left p {
    padding-right: 0;
  }

  .side-content .custom-button {
    margin-top: 20px;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .section-title h6:before {
    display: none;
  }

  .side-content h2 {
    font-size: 38px;
  }

  .carousel-image-box {
    width: 100%;
  }

  .side-hotel-box.right {
    padding-left: 50px;
  }

  .side-hotel-box h2 {
    font-size: 38px;
  }

  .side-hotel-box h2 br {
    display: none;
  }

  .side-hotel-box .review {
    display: none;
  }

  .side-content.text-left {
    padding-right: 10%;
  }

  .video-box .play-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
  }

  .rooms-slider .swiper-slide .room-detail {
    width: 60%;
  }

  .recent-news .content {
    padding-left: 0;
  }

  .recent-news .content ul:before {
    display: none;
  }

  .meeting-event-box .content {
    width: 100%;
    margin-top: 0;
    padding-top: 25px;
  }

  .meeting-event-box .content h5 {
    font-size: 23px;
  }

  .event-headline h3 {
    font-size: 44px;
  }

  .room-box .content {
    width: 100%;
    margin-left: 0;
    margin-top: 25px;
    padding: 0;
  }

  .special-offer-box .content h5 {
    font-size: 23px;
  }

  .special-offer-box .content {
    width: 100%;
    margin-top: 25px;
    padding: 0;
  }

  .newsletter-box h2 {
    font-size: 28px;
  }

  .side-gallery {
    transform: translateY(0);
  }

  .rooms-list li {
    padding-right: 15px;
  }

  .rooms-list li:nth-child(even) {
    padding-left: 15px;
  }

  .room-type h3 {
    font-size: 60px;
  }

  .room-info-box {
    padding: 30px;
  }

  .room-info-box ul li span {
    width: auto;
  }

  .contact-box {
    padding: 30px;
  }

  .contact-form input[type="text"] {
    width: 100%;
  }

  .custom-button {
    height: 70px;
    line-height: 70px;
  }

  .sidebar {
    padding-left: 0;
  }

  .news-box .content {
    padding-left: 0;
  }

  .news-box .content .category:before {
    display: none;
  }

  .footer .bottom-bar:before {
    width: 100%;
    left: 0;
  }

  .content-section.bottom-spacing {
    margin-bottom: 0 !important;
  }

  .content-section.top-spacing {
    margin-top: 0 !important;
  }

  .col-md-6:nth-child(2) .recent-news {
    padding-right: 0;
  }

  .col-md-6:nth-child(3) .recent-news {
    padding-left: 0;
  }
}
/* RESPONSIVE TABLET  */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .cursor {
    display: none;
  }
.spacing-100 {
  width: 100%;
  height: 50px;
  display: flex;
}
  .hamburger-navigation .nav-menu.mobile-menu {
    display: inline-block;
  }
  .hamburger-navigation-active .hamburger-navigation .layer .c{
      display:none;
  }
   .hamburger-navigation-active .hamburger-navigation .layer .l{
      display:none;
  }
  .navbar .site-menu {
    display: none;
  }
  .navbar .hamburger-menu{
      display: inline-block;
  }
  .hamburger-navigation .nav-menu{
      display:none;
  }
.hamburger-navigation .nav-menu-title{
      display:none;

  }
.navbar {
      
    padding: 10px 0;
}
  .side-image.right-full {
    width: 100%;
  }

  .side-content.text-center {
    padding: 0;
  }

  .side-content.text-left {
    padding: 100px 0;
  }

  .side-hotel-box.right {
    padding: 100px 0;
  }

  .side-gallery {
    width: 100vw;
    margin-left: 50%;
    float: left;
    transform: translateX(-50%);
  }

  .side-gallery div:nth-child(1) {
    width: 100%;
  }

  .side-gallery div:nth-child(2) {
    width: 50%;
    margin: 0;
  }

  .side-gallery div:nth-child(3) {
    width: 50%;
    margin: 0;
  }

  .side-content h2 br {
    display: none;
  }

  .rooms-slider {
    width: calc(100% - 30px);
    margin: 0 15px;
  }

  .rooms-slider .swiper-slide {
    max-width: 100%;
  }

  .testimonial-box.bottom {
    margin-bottom: 0;
  }

  .recent-news .content h2 {
    font-size: 27px;
    margin-top: 10px;
  }

  .member-box {
    margin: 15px 0;
  }

  .member-box .content {
    width: 100%;
    margin-top: 0;
  }
  .history-info {
    background-position-x: 70px;
}
.history-info .services__info-block--active .m_23 em{
    margin-left: 70px;
    padding: 0px 0px 0px 0px;
    width: 60%;
}
.history-info .brief {
    margin-top: 30px;
    margin-left: 70px;
    padding-left: 60px;
    padding-right: 30px;
}
.history-info .services__title{
    background-position-x: 70px;
}
.history-info .m_23 em{padding: 0;margin-left: 70px;padding: 0px 0px 0px 0px;width: 60%;}
  .side-image.left-full-space {
    width: 100vw;
    float: left;
    margin-right: 0;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .side-image.right-full-space {
    width: 100vw;
    float: left;
    margin-right: 0;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .event-headline h3 {
    font-size: 36px;
  }

  .event-headline h3 br {
    display: none;
  }

  .content-tab .tab-item {
    padding: 30px;
  }

  .content-tab .tab-item ul li {
    width: 50%;
  }

  .content-tab .tab-item .col-lg-4.col-md-6 {
    margin-bottom: 30px;
  }

  .video-box {
    margin: 0;
  }

  .video-box h2 br {
    display: none;
  }

  .video-box .play-btn {
    margin-bottom: 50px;
  }

  .rooms-filter .price-range {
    width: 100%;
    margin-bottom: 10px;
  }

  .rooms-filter .specifications {
    width: 100%;
    padding-left: 0;
  }

  .rooms-list li {
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }

  .rooms-list li:nth-child(even) {
    width: 100%;
    padding-left: 0;
  }

  .rooms-list li:last-child {
    margin-bottom: 0;
  }

  .recent-testimonial {
    padding: 30px;
  }

  .sidebar {
    margin-top: 50px;
  }

  .newsletter-box {
    padding: 0;
  }
 .img_lidtC{
    display: none;
}

.product-nav ul{display:block;text-align: left;}
.product-nav ul li{
    padding: 0 20px;
    width: 50%;
    float: left;
    text-align: left;
}
.product-nav ul li:first-child:before {
    display:block;
   
}
  .footer-bar h6 {
    font-size: 20px;
  }

  .footer-bar figure img {
    height: 34px;
  }

  .footer .widget-title {
    margin-top: 0;
  }

  .footer .row div:first-child .widget-title {
    margin-top: 0;
  }
}

/* RESPONSIVE MOBILE */
@media only screen and (max-width: 1920px), only screen and (max-device-width: 1920px) {
  .slider h1 {
    font-size: 4.0vw;
  }
.carousel-image-box figure figcaption h5 {
  width: 100%;
  display: block;
  font-size: 20px;
  font-weight: 800;
  }
    .section-title h2 {
  width: 100%;
  display: block;
  margin: 0;
  font-size: 50px;
  padding-top: 10px;
  }
    .newsletter-box h2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  line-height: 1.5em;
  font-family: "Argesta Display";
  font-size: 50px;
  }
}

/* RESPONSIVE MOBILE */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .hamburger-navigation-active .hamburger-navigation .container {
    padding-top: 50px;
  }

  .hamburger-navigation .info-box {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
  }

  .hamburger-navigation .nav-menu li {
    margin: 3px 0;
  }

  .hamburger-navigation .nav-menu li a {
    font-size: 18px;
    max-width: 150px;
  }
     .hamburger-navigation .mobile-menu  ul  {
    padding-left: 0px;
  }

    .hamburger-navigation .mobile-menu  ul li span {
    float: right;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 22px;
    text-align: center;
    margin-top: 5px;
    position: absolute;
    top: 0px;
    right: 80px;
    border: 1px solid rgb(204 204 204 / 20%);
    }
.hamburger-navigation .mobile-menu li ul.active {
    display: block;
}
.hamburger-navigation .mobile-menu  ul li {
    position: relative;
}
.hamburger-navigation .mobile-menu  ul li .fa-minus:before { content: "-";color: #fff; }
.hamburger-navigation .mobile-menu  ul li .fa-plus:before {content: "+";color: #fff;}

   .hamburger-navigation .mobile-menu li ul  {
    display:none;
    padding-left: 70px;
    padding-top: 5px;
    background: rgb(255 255 255 / 0.1);
  }
  .hamburger-navigation .mobile-menu li ul li a{
    font-size: 16px;
  }
    .hamburger-navigation .mobile-menu li ul li a:before {
    display:none;
  }
  .page-header .container h1 {
    font-size: 26px;
  }

  .page-header .container p {
    letter-spacing: 0;
  }
.page-header{
    height: 230px;
    background-position: center;
}
  .navbar .navbar-text {
    /* display: none; */
  }
    .video-container video {
    display:none;
  }

    .video-container:after{display:none;}
  .slider h6 {
    letter-spacing: 0;
    font-size: 13px;
  }

  .slider h1 {
    font-size: 8vw;
    line-height: 1.5em;
  }

  .slider a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
  }

  .slider .slider-prev {
    display: none;
  }

  .slider .slider-next {
    display: none;
  }

  .slider .slider-fraction {
    width: 30%;
  }

  .hotel-search form .form-group {
    width: 100%;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title h2 br {
    display: none;
  }
.news-list .list-cont .item .date{margin-top:30px}
.news-detail-area  .list-cont .item .date{margin-top:0px}
.news-list .list-cont .item .date h1{
	
    display: inline-block;
    float: left;
    font-size: 30px;
    line-height: 30px;


}
.news-list .list-cont .item .date h3{
	    display: inline-block;
    float: left;
    font-size: 30px;
    line-height: 30px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
}
.news-list .list-cont img {
    max-width: 100%;
    margin-bottom: 20px;
    display: none;
}
.news-list.news-detail-area .list-cont img {
   display:block;
}
.news-list .list-cont .title h4
{
	font-size:20px;
	line-height:1.6em;
	text-align: justify;
}
div#mymap {
    height: 230px;
    z-index: -1;
    width: 100%;
}
.verify_code img{
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.col-lg-4.verify_code{padding-left:15px;}

.col-md-4.text-center.num-line{
    margin-bottom: 0;
    margin-top: 20px;
}
.row.text-center .num-line:first-child, .row.text-center .num-line:nth-child(4n+4){
    border-left: none;
}
.col-md-4.text-center.num-line h3{
    margin-bottom: 10px;
    font-size: 20px;
}
  .footer{
      padding-top:50px;
      text-align:center;
  }
  .footer-ri{text-align: center;}
  .content-section{
      
padding: 50px 0;
  }

.bg_g50 .list-foot .jc_share {display:none}
.bg_g50 .list-foot .h1, h1 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6em;
}
.slider-area .container {
    padding-top: 30px;
    padding-bottom: 30px;
}
.slider-area .slider-detail .slider-slide .slider-inner-content .slide-heading {margin-bottom: 15px;}
.slider-detail-area h1 span{margin-top:10px}
.slider-detail-area h1 {margin-bottom:0px}
.slider-detail-area {
    padding: 30px 0;
}
.product .imgs{width:100%;margin-top:20px}
.list-c-v {
    margin-bottom: 15px;
    font-size: 12px;
}
.list-c-v span{
    margin-right: 10px;
}
.list-c-v .line{
    width: 30px;
    margin-right: 10px;
    margin-left: 0;
}
.section-title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.news-detail-area .list-foot{ 
display:none;}

.article_content_line{
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-right: none;
    padding-right: 0;
}
.page-box .prev-page, .page-box .next-page{
    margin-bottom: 20px;
}
  .side-hotel-box h2 {
    font-size: 34px;
  }

  .package-box {
    padding: 30px;
  }

  .package-box h4 {
    font-size: 34px;
  }

  .events-tab .tab-nav li {
    margin-bottom: 10px;
  }

  .rooms-slider .swiper-slide .room-detail {
    width: calc(100% - 30px);
    left: 15px;
    bottom: 15px;
    padding: 15px;
  }

  .room-box .content .bottom-specs .icons {
    width: 100%;
  }
    .footer-bar h6 {
    font-size: 16px;
  }
  .room-box .content .bottom-specs .reviews {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }

  .room-type h3 {
    font-size: 34px;
  }

  .room-gallery-top {
    display: none;
  }

  .room-info-box ul li b {
    width: 80%;
  }

  .content-tab .tab-nav li {
    padding: 0 15px;
    margin-right: 0;
    margin-left: -1px;
  }

  .content-tab .tab-nav li:first-child {
    margin-left: 0;
  }

  .content-tab .tab-item ul li {
    width: 100%;
  }

  .news-box {
    margin-bottom: 50px;
  }

  .news-box .content h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 10px;
  }

  .sidebar .widget {
    padding: 30px;
  }

  .newsletter-box h2 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 1.5em;
  }

  .newsletter-box form {
    height: auto;
  }

  .newsletter-box form input[type="email"] {
    margin-bottom: 10px;
  }

  .newsletter-box form input[type="submit"] {
    width: 100%;
  }
 .footer-bar{/* text-align:center; */}
 .footer-bar i{
    font-size: 20px;
}
  .footer-bar strong {
    width: 100%;
    display: block;
    margin: 10px 0 0px 0;
    padding-left: 30px;
    font-size: 20px;
    /* text-align: center; */
  }

  .footer-bar figure {
    width: 100%;
    margin: 0;
    margin-top: 10px;
    display: none;
  }

  .footer .bottom-bar .footer-social {
    width: 100%;
    display: block;
    margin-top: 10px;
  }

  .footer .bottom-bar .footer-social li {
    margin-left: 0;
    margin-right: 10px;
  }
  .footer-menu {display:none;}
}

.footer-menu ul li{list-style:none;font-size: 18px;line-height: 2em;width: 50%;float: left;}
.navbar .site-menu ul li a.active {
    color: #0091d9;
    font-weight: 600;
}
.hamburger-navigation .nav-menu li a:before {font-size: 13px;line-height: 12px;margin-right: 15px;margin-top: 10px;float: left;display: inline-block;color: rgb(255 255 255 / 20%);}
.hamburger-navigation .nav-menu li a:hover{transform: translateX(-5px);}
.hamburger-navigation .nav-menu li a:hover:before{transform: translateX(10px);}

.hamburger-navigation .nav-menu li a.l_current{transform: translateX(-5px);}
.hamburger-navigation .nav-menu li a.l_current:before{transform: translateX(10px);}

.hamburger-navigation .nav-menu li a.r_current{transform: translateX(5px); opacity:0.2;}
.hamburger-navigation .nav-menu li a.r_current:before{transform: translateX(0px);}

a:hover:before{
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .30s ease-in-out;
    -ms-transition: all .30s ease-in-out;
    -o-transition: all .30s ease-in-out;
    transition: all .30s ease-in-out;}
.hamburger-navigation .nav-menu li:first-child a:before{content: "01";}
.hamburger-navigation .nav-menu li:nth-child(2) a:before{content: "02";}
.hamburger-navigation .nav-menu li:nth-child(3) a:before{content: "03";}
.hamburger-navigation .nav-menu li:nth-child(4) a:before{content: "04";}
.hamburger-navigation .nav-menu li:nth-child(5) a:before{content: "05";}
.hamburger-navigation .nav-menu li:nth-child(6) a:before{content: "06";}
.hamburger-navigation .nav-menu li:nth-child(7) a:before{content: "07";}
.hamburger-navigation .nav-menu li:nth-child(8) a:before{content: "08";}
.hamburger-navigation .nav-menu li:nth-child(9) a:before{content: "09";}
.hamburger-navigation .nav-menu li:nth-child(10) a:before{content: "10";}
.hamburger-navigation .nav-menu-title{color: rgb(255 255 255 / 20%);margin-bottom: 10px;display: inline-block;}

.hamburger-navigation-active .hamburger-navigation .layer .c {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%) rotateX(45deg);
	border-radius: 50%;
	border: 1px dotted aqua;
	animation: dripBounce 5s infinite;
}
@keyframes dripBounce {
	
	10% {
		top: calc(50% + 5px);
	}
	20% {
		top: calc(50% - 5px);
	}
	35% {
		top: 50%;
	}
}
.hamburger-navigation-active .hamburger-navigation .layer .c1 {
	height: 10px;
	width: 20px;
	animation-delay: -10s;
}
.hamburger-navigation-active .hamburger-navigation .layer .c2 {
	height: 20px;
	width: 40px;
	animation-delay: -9.8s;
	top: calc(50% + 1px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c3 {
	height: 30px;
	width: 60px;
	animation-delay: -9.6s;
	top: calc(50% + 2px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c4 {
	height: 40px;
	width: 80px;
	animation-delay: -9.4s;
	top: calc(50% + 3px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c5 {
	height: 50px;
	width: 100px;
	animation-delay: -9.2s;
	top: calc(50% + 4px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c6 {
	height: 60px;
	width: 120px;
	animation-delay: -9s;
	top: calc(50% + 5px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c7 {
	height: 70px;
	width: 140px;
	animation-delay: -8.8s;
	top: calc(50% + 6px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c8 {
	height: 80px;
	width: 160px;
	animation-delay: -8.6s;
	top: calc(50% + 7px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c9 {
	height: 90px;
	width: 180px;
	animation-delay: -8.4s;
	top: calc(50% + 8px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c10 {
	height: 100px;
	width: 200px;
	animation-delay: -8.2s;
	top: calc(50% + 9px);
}
.hamburger-navigation-active .hamburger-navigation .layer.c11 {
	height: 110px;
	width: 220px;
	animation-delay: -8s;
	top: calc(50% + 10px);
}
.hamburger-navigation-active .hamburger-navigation .layer.c12 {
	height: 120px;
	width: 240px;
	animation-delay: -7.8s;
	top: calc(50% + 11px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c13 {
	height: 130px;
	width: 260px;
	animation-delay: -7.6s;
	top: calc(50% + 12px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c14 {
	height: 140px;
	width: 280px;
	animation-delay: -7.4s;
	top: calc(50% + 13px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c15 {
	height: 150px;
	width: 300px;
	animation-delay: -7.2s;
	top: calc(50% + 14px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c16 {
	height: 160px;
	width: 320px;
	animation-delay: -7s;
	top: calc(50% + 15px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c17 {
	height: 170px;
	width: 340px;
	animation-delay: -6.8s;
	top: calc(50% + 16px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c18 {
	height: 180px;
	width: 360px;
	animation-delay: -6.6s;
	top: calc(50% + 17px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c19 {
	height: 190px;
	width: 380px;
	animation-delay: -6.4s;
	top: calc(50% + 18px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c20 {
	height: 200px;
	width: 400px;
	animation-delay: -6.2s;
	top: calc(50% + 19px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c21 {
	height: 210px;
	width: 420px;
	animation-delay: -6s;
	top: calc(50% + 20px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c22 {
	height: 220px;
	width: 440px;
	animation-delay: -5.8s;
	top: calc(50% + 21px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c23 {
	height: 230px;
	width: 460px;
	animation-delay: -5.6s;
	top: calc(50% + 22px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c24 {
	height: 240px;
	width: 480px;
	animation-delay: -5.4s;
	top: calc(50% + 23px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c25 {
	height: 250px;
	width: 500px;
	animation-delay: -5.2s;
	top: calc(50% + 24px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c26 {
	height: 260px;
	width: 520px;
	animation-delay: -5s;
	top: calc(50% + 25px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c27 {
	height: 270px;
	width: 540px;
	animation-delay: -4.8s;
	top: calc(50% + 26px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c28 {
	height: 280px;
	width: 560px;
	animation-delay: -4.6s;
	top: calc(50% + 27px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c29 {
	height: 290px;
	width: 580px;
	animation-delay: -4.4s;
	top: calc(50% + 28px);
}
.hamburger-navigation-active .hamburger-navigation .layer .c30 {
	height: 300px;
	width: 600px;
	animation-delay: -4.2s;
	top: calc(50% + 29px);
}
.hamburger-navigation-active .hamburger-navigation .layer .l {
	height: 20px;
	width: 1px;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: aqua;
	animation: drip 5s infinite;
	animation-delay: -10.3s;
}
@keyframes drip {
	0% {
		opacity: 1;
		top: 0%;
	}
	10% {
		opacity: 0.1;
		top: calc(50% + 10px);
	}
	100% {
		opacity: 0;
	}
}
.product-phone i {
    font-size: 50px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=0.45);
}

p.product-phone {
    margin-bottom: 20px;
}
   @keyframes scaleDraw { 
    0% {
       
        opacity: 1;
    }

    25% {
        
        opacity: 0.3;
    }
        50% {
       
        opacity: 1;
    }

    100% {
        
        opacity: 0.3;
    }
        }




.pc-nav-list{
    display:none;
    position: absolute;
    padding: 20px 0;
    width: 100%;
    top: 90px;
    left: 0;
    background: #e3e6e9;
}
.navbar .site-menu ul.pc-nav {
    display: block;
    flex-wrap: nowrap;
    margin-right: auto;
    margin-left: auto;
    font-size: 0;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .30s ease-in-out;
    -ms-transition: all .30s ease-in-out;
    -o-transition: all .30s ease-in-out;
    transition: all 1s ease-in-out;
}
.navbar .site-menu ul.pc-nav li{
  margin: 0;
  width: 24.1%;
  overflow: hidden;
  padding: 0;
  border: 0;
}
.navbar .site-menu ul.pc-nav li a{
  background: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
  line-height: 1.7em;
  width: 100%;
  border: 0;
  font-weight: 400;
  display: block;
  margin: 5px 10px;
  border: 0;
}
.navbar .site-menu ul.pc-nav li a:hover{
   background: #0091d9;
   color:#fff;
}
.navbar .site-menu li.hover-menu:hover .pc-nav-list{
display:block;
}